home *** CD-ROM | disk | FTP | other *** search
- on checkhotspots
- global objpctsprite, objnum, objpropertylist, poslist, sidecounter, hsrectlist, closeupsprite, notationsprite, gpictfilepath, oldpartialpct
- set headname to "Z" & the text of field "Current Object"
- set closeupsprite to 30
- set notationsprite to 31
- set offset to 10
- set hoffset to the left of sprite objpctsprite
- set voffset to the top of sprite objpctsprite
- set where to point(the mouseH, the mouseV)
- if count(hsrectlist) > 0 then
- repeat with r in hsrectlist
- set left to getAt(r, 1) + hoffset
- set top to getAt(r, 2) + voffset
- set right to getAt(r, 3) + hoffset
- set bottom to getAt(r, 4) + voffset
- set r1 to rect(left, top, right, bottom)
- if inside(where, r1) then
- puppetSprite(closeupsprite, 1)
- set the castLibNum of sprite closeupsprite to the number of castLib "Object"
- set order to getPos(getaProp(objpropertylist, #hs), r)
- set posnum to the last char in string(getOne(getaProp(objpropertylist, #hs), r))
- set the memberNum of sprite closeupsprite to the number of member (headname & string(2 + order))
- set the loc of sprite closeupsprite to getAt(poslist, value(posnum))
- updateStage()
- set notationnum to the number of member (headname & string(2 + order) & "T")
- if notationnum > 0 then
- puppetSprite(notationsprite, 1)
- set the castLibNum of sprite notationsprite to the number of castLib "Object"
- set notationname to the name of member notationnum
- set the memberNum of sprite notationsprite to notationnum
- set left to the left of sprite closeupsprite + 15
- set top to the bottom of sprite closeupsprite - the height of member notationname - 15
- set right to left + the width of member notationname
- set bottom to top + the height of member notationname
- set the rect of sprite notationsprite to rect(left, top, right, bottom)
- updateStage()
- end if
- exit repeat
- end if
- puppetSprite(closeupsprite, 0)
- puppetSprite(notationsprite, 0)
- end repeat
- end if
- end
-
- on changvrview direction
- global gqtvrinstance
- qtvrnudge(gqtvrinstance, direction)
- repeat while the mouseDown
- qtvrnudge(gqtvrinstance, direction)
- end repeat
- end
-